home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / comm / misc / LogTime.lha / LogTime / makefile < prev    next >
Makefile  |  1995-09-02  |  736b  |  31 lines

  1. #static char * rcsid = "$Id: makefile,v 1.2 1995/09/02 02:31:26 mleining Exp mleining $";
  2. # AMIGA Manx Aztec C Makefile for logtime MJL
  3.  
  4. # -lcl  = UNIX, ANSI, and general functions, 32 bit ints, large code & data
  5. # -lm8l = math functions, 68881 float, 32 bit ints, large code & data
  6.  
  7. # bd = Enable stack depth checking
  8. # c2 = Generate 68020 code
  9. # d    define symbols
  10. # f8 = Generate 68881/68882 code 
  11. # mc = Large Code
  12. # md = Large Data
  13. # o  = output file name
  14. # pa = strict ANSI C
  15. # so = Optimize
  16. # wq = print warnings to aztecC.err
  17.  
  18. CFLAGS  =  -bd -dAMIGA -so -wq
  19. LLIBS   =  -lc
  20. OBJS    = logtime.o
  21.  
  22. all: LogTime.Aztec
  23.  
  24. logtime.o: logtime.c
  25.  
  26. LogTime.Aztec: $(OBJS)
  27.    ln -o LogTime.Aztec $(OBJS) $(LLIBS)
  28.  
  29. logtime.c:
  30.    co logtime.c
  31.